1
תגובות

בעיה בהכנת MVC

פתח pol292 ,
אני מנשה שהיה עיצוב קבוע לכל האתר ועשיתי את זה ככה:
זה בCONTROLLER
function __construct() {
       
        $this->view = new view(get_called_class());
        $this->title = get_called_class();
        $this->view->showView($this->title);
    }

ובVIEW:
function __construct($child,$title) {
        $this->child = $child ;
        $this->title = $title;
        require "views/header.php";
    }

הבעיה מתחילה כשאני רוצה להגדיר את הכותרת אצל המחלקה שמורישה כי בזמן ההורשה האב כבר בנה את עצמו והשם של הדף ניתן

1 תשובות

avatar ענה pol292 ב 14 ליולי 2012 #

טעיתי בקונטרולייר:

function __construct() {
       
        $this->view = new view(get_called_class(),$this->title);
        $this->title = get_called_class();
    }